projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d1edd7e
)
include -lintl in LIBS
author
Tim Janik
<timj@src.gnome.org>
Tue, 15 Dec 1998 03:37:32 +0000
(
03:37
+0000)
committer
Tim Janik
<timj@src.gnome.org>
Tue, 15 Dec 1998 03:37:32 +0000
(
03:37
+0000)
config.h.in
patch
|
blob
|
history
configure.in
patch
|
blob
|
history
diff --git
a/config.h.in
b/config.h.in
index 3934b879a2e16b692dabb9959ca265cae39e7fee..4f4eef8f5842e60dc99d1afacd044e0244f044ff 100644
(file)
--- a/
config.h.in
+++ b/
config.h.in
@@
-161,3
+161,6
@@
/* Define if you have the i library (-li). */
#undef HAVE_LIBI
+
+/* Define if you have the intl library (-lintl). */
+#undef HAVE_LIBINTL
diff --git
a/configure.in
b/configure.in
index 284ac3ac4d0210fb6a6d33ccebbbe5b26ac626f0..0b0c7688c8f4afc19d1cc1143ecc1047de14445c 100644
(file)
--- a/
configure.in
+++ b/
configure.in
@@
-132,6
+132,10
@@
AC_SUBST(REBUILD)
# i18n stuff
ALL_LINGUAS="de pt"
AM_GNU_GETTEXT
+AC_CHECK_FUNC(gettext,
+ ,
+ AC_CHECK_LIB(intl, gettext)
+)
dnl The DU4 header files don't provide library prototypes unless
dnl -std1 is given to the native cc.